Remove timout in async_test for websockets tests Remove all the timeout in async_test for websockets tests. Affected tests: 21 Before: Pass: 6, Failed: 15 After: Pass: 6, Failed: 15 Related: #11120 
diff --git a/websockets/extended-payload-length.html b/websockets/extended-payload-length.html index 9e586a9..a5ea78f 100644 --- a/websockets/extended-payload-length.html +++ b/websockets/extended-payload-length.html 
@@ -20,7 +20,7 @@  assert_equals(e.data, data);  t.done();  }); -}, "Application data is 125 byte which means any 'Extended payload length' field isn't used at all.", {timeout:20000}); +}, "Application data is 125 byte which means any 'Extended payload length' field isn't used at all.");    async_test(function(t){  var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/echo'); @@ -34,7 +34,7 @@  assert_equals(e.data, data);  t.done();  }); -}, "Application data is 126 byte which starts to use the 16 bit 'Extended payload length' field.", {timeout:20000}); +}, "Application data is 126 byte which starts to use the 16 bit 'Extended payload length' field.");    async_test(function(t){  var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/echo'); @@ -48,7 +48,7 @@  assert_equals(e.data, data);  t.done();  }); -}, "Application data is 0xFFFF byte which means the upper bound of the 16 bit 'Extended payload length' field.", {timeout:20000}); +}, "Application data is 0xFFFF byte which means the upper bound of the 16 bit 'Extended payload length' field.");    async_test(function(t){  var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/echo'); @@ -62,6 +62,6 @@  assert_equals(e.data, data);  t.done();  }); -}, "Application data is (0xFFFF + 1) byte which starts to use the 64 bit 'Extended payload length' field", {timeout:20000}); +}, "Application data is (0xFFFF + 1) byte which starts to use the 64 bit 'Extended payload length' field");    </script>